Gateways API
POST /gateways
Description
This API endpoint retrieves a list of all available gateways in the system.
Request Body
The request utilizes GraphQL to perform the gateways
query.
Query:
query gateways {
gateways {
id
name
}
}
Variables:
{}
Example Request:
curl --location '' \
--header 'Content-Type: application/json' \
--data '{"query":"query gateways {\n gateways {\n id\n name\n }\n}","variables":{}}'